SelectedIndexes Property (MultiAutoComplete<T>)
In This Topic
Gets or sets a list containing the indexes of the items that are currently selected.
Syntax
'Declaration
Public Property SelectedIndexes As System.Collections.Generic.IList(Of Integer)
'Usage
Dim instance As MultiAutoComplete(Of T)
Dim value As System.Collections.Generic.IList(Of Integer)
instance.SelectedIndexes = value
value = instance.SelectedIndexes
public System.Collections.Generic.IList<int> SelectedIndexes {get; set;}
public read-write property SelectedIndexes: System.Collections.Generic.IList;
public function get,set SelectedIndexes : System.Collections.Generic.IList
public: __property System.Collections.Generic.IList<int>* get_SelectedIndexes();
public: __property void set_SelectedIndexes(
System.Collections.Generic.IList<int>* value
);
public:
property System.Collections.Generic.IList<int>^ SelectedIndexes {
System.Collections.Generic.IList<int>^ get();
void set ( System.Collections.Generic.IList<int>^ value);
}
See Also